home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / patch / WHDIDemos.lzh / TomSoft_VectorBallsDemo.lha / VectorBallsDemoHD / Install-VectorBallsDemo next >
Text File  |  2001-10-28  |  3KB  |  182 lines

  1. ;****************************
  2.  
  3. (set #sub-dir "data")            ;sub directory containing data files
  4. (set #readme-file "ReadMe")        ;name of readme file
  5. (set #highs-file "highs")            ;name of high scores file
  6. (set #cleanup "")            ;files to delete after install
  7.  
  8. ;****************************
  9. ;----------------------------
  10. ; checks if given program is installed, if not abort install
  11. ; #program - to check
  12.  
  13. (procedure P_ChkRun
  14.   (if
  15.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  16.     ("")
  17.     (abort
  18.       (cat
  19.     "You must install \"" #program "\" first!\n"
  20.     "It must be accessible via the path.\n"
  21.     "You can find it in the WHDLoad package."
  22.       )
  23.     )
  24.   )
  25. )
  26.  
  27. ;----------------------------
  28. ; Wait for inserting disk
  29. ; IN:  #AD_disk - name of disk
  30. ; OUT: -
  31.  
  32. (procedure P_disk
  33.   (askdisk
  34.     (dest #AD_disk)
  35.     (prompt ("\nInsert Disk \"%s\" in any drive!" #AD_disk))
  36.     (help @askdisk-help)
  37.   )
  38. )
  39.  
  40. ;****************************
  41.  
  42. (if
  43.   (exists #readme-file)
  44.   (if
  45.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  46.     ("")
  47.     (run ("SYS:Utilities/More %s" #readme-file))
  48.   )
  49. )
  50.  
  51. (set #program "WHDLoad")
  52. (P_ChkRun)
  53.  
  54. (if
  55.   (getenv "WHDLInstPath")
  56.   (set @default-dest (getenv "WHDLInstPath"))
  57. )
  58. (set #dest
  59.   (askdir
  60.     (prompt ("Where should \"%s\" be installed?\nA drawer \"%s\" will be automatically created." @app-name @app-name))
  61.     (help @askdir-help)
  62.     (default @default-dest)
  63.     (disk)
  64.   )
  65. )
  66. (run ("setenv WHDLInstPath \"%s\"\ncopy ENV:WHDLInstPath ENVARC:" @default-dest))
  67. (set #dest (tackon #dest @app-name))
  68. (if
  69.   (exists #dest)
  70.   (
  71.     (set #choice
  72.       (askbool
  73.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted?" #dest))
  74.         (default 1)
  75.         (choices "Delete" "Skip")
  76.         (help @askbool-help)
  77.       )
  78.     )
  79.     (if
  80.       (= #choice 1)
  81.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  82.     )
  83.   )
  84. )
  85. (makedir #dest
  86.   (help @makedir-help)
  87.   (infos)
  88. )
  89.  
  90. ;----------------------------
  91.  
  92. (copyfiles
  93.   (help @copyfiles-help)
  94.   (source ("%s.Slave" @app-name))
  95.   (dest #dest)
  96. )
  97. (if
  98.   (exists ("%s.coloricon" @app-name))
  99.   (set #icon
  100.     (askchoice
  101.       (prompt "\nWhich icon would you like to install?\n")
  102.       (default 0)
  103.       (choices "Color Icon" "Newicon")
  104.       (help @askchoice-help)
  105.     )
  106.   )
  107.   (set #icon 0)
  108. )
  109. (select #icon
  110.   (set #icon ("%s.coloricon" @app-name))
  111.   (set #icon ("%s.newicon" @app-name))
  112. )
  113. (copyfiles
  114.   (help @copyfiles-help)
  115.   (source #icon)
  116.   (newname ("%s.info" @app-name))
  117.   (dest #dest)
  118. )
  119. (if
  120.   (exists #readme-file)
  121.   (copyfiles
  122.     (help @copyfiles-help)
  123.     (source #readme-file)
  124.     (dest #dest)
  125.   )
  126. )
  127. (if
  128.   (exists ("%s.info" #readme-file))
  129.   (
  130.     (copyfiles
  131.       (help @copyfiles-help)
  132.       (source ("%s.info" #readme-file))
  133.       (dest #dest)
  134.     )
  135.     (tooltype
  136.       (dest (tackon #dest #readme-file))
  137.       (noposition)
  138.     )
  139.   )
  140. )
  141.  
  142. (if
  143.   (= #sub-dir "")
  144.   ("")
  145.   (
  146.     (set #dest (tackon #dest #sub-dir))
  147.     (makedir #dest
  148.       (help @makedir-help)
  149.     )
  150.   )
  151. )
  152. (copyfiles
  153.     (help @copyfiles-help)
  154.     (source ("OSEmu.400" @app-name))
  155.     (dest #dest)
  156. )
  157. (if
  158.   (exists #highs-file)
  159.   (copyfiles
  160.     (help @copyfiles-help)
  161.     (source #highs-file)
  162.     (dest #dest)
  163.   )
  164. )
  165.  
  166. ;----------------------------
  167.  
  168. (set #AD_disk "DemoDisk")
  169. (P_disk)
  170. (copyfiles
  171.   (help @copyfiles-help)
  172.   (source ("%s:" #AD_disk))
  173.   (dest #dest)
  174.   (pattern "(datasin|gfx_data|mus_data|Tom)")
  175. )
  176.  
  177. ;----------------------------
  178.  
  179. (run ("Delete %s ALL QUIET FORCE" #cleanup))
  180.  
  181. (exit)
  182.